@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap%27');

.menu {
    font-family: 'Poppins', sans-serif !important;
    min-width: 360px;
    color: #fff;
    position: absolute;
    border-radius: 0px;
    background: rgba(26, 32, 48, 0.635);
}

.menu .head {
    color: #fff;
    font-size: 20px;
    text-align: left;
    padding-left: 8.5px;
    height: 40px;
    line-height: 42px; 
    background-color: #21202000;
}

.menu .menu-items {
    max-height: 600px;
    overflow-y: auto;
}

.menu .menu-items .menu-item {
    display: block; 
    font-size: 12.5px;
    height: 40px;
    line-height: 40px;
    width: 97.5%;
    color: #fff;
    padding-left: 5px;
    text-indent: 2%;
    transition: 200ms

}

.menu .menu-items .menu-item.selected {
    border-left: 2px solid #fff;
    background: #242b3f85;
}

.menu .menu-items .menu-item .slider {
    margin-right: 6px;
    float: right
}

::-webkit-scrollbar {
    width: 0px;
  }
  
::-webkit-scrollbar-track {
    background: #00000000; 
}

::-webkit-scrollbar-thumb {
    background: #00000000;
}

.menu.align-left {
    left: 40;
    top: 50%;
    transform: translate(0, -50%);
}

.menu.align-top-left {
    left: 40;
    top: 40;
}

.menu.align-top {
    left: 50%;
    top: 40;
    transform: translate(-50%, 0);
}

.menu.align-top-right {
    right: 10;
    top: 40;
}

.menu.align-right {
    right: 40;
    top: 50%;
    transform: translate(0, -50%);
}

.menu.align-bottom-right {
    right: 40;
    bottom: 40;
}

.menu.align-bottom {
    left: 50%;
    bottom: 40;
    transform: translate(-50%, 0);
}

.menu.align-bottom-left {
    left: 40;
    bottom: 40;
}

.menu.align-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

  